home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DMAKE38B.ARJ / EXEC.H < prev    next >
C/C++ Source or Header  |  1992-01-23  |  351b  |  20 lines

  1. #ifndef _EXEC_h_
  2. #define _EXEC_h_
  3.  
  4. #ifndef ANSI
  5. #if defined(__STDC__) || defined(__TURBOC__)
  6. #define ANSI(x) x
  7. #else
  8. #define ANSI(x) ()
  9. #endif
  10. #endif
  11.  
  12. extern int  exec ANSI((int, char far *, char far *, unsigned int, char far *));
  13.  
  14. #ifndef MK_FP
  15. #define MK_FP(seg,ofs) \
  16.     ((void far *) (((unsigned long)(seg) << 16) | (unsigned)(ofs)))
  17. #endif
  18.  
  19. #endif
  20.